home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / graphics / Regions.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  803b  |  51 lines

  1. #ifndef GRAPHICS_REGIONS_H
  2. #define GRAPHICS_REGIONS_H 1
  3. /*
  4. ** regions.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/01/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for regions.h
  17. */
  18. #ifndef RegionPtr
  19. #define RegionPtr ADDRESS
  20. #endif
  21. #ifndef RegionRectanglePtr
  22. #define RegionRectanglePtr ADDRESS
  23. #endif
  24. /*
  25. ** End of StructPointer defines for regions.h
  26. */
  27.      
  28. #ifndef EXEC_TYPES_H
  29. #include <exec/types.h>
  30. #endif
  31.  
  32. #ifndef GRAPHICS_GFX_H
  33. #include <graphics/gfx.h>
  34. #endif
  35.  
  36.  
  37. STRUCT RegionRectangle
  38.  
  39.     RegionRectanglePtr  _Next 
  40.     RegionRectanglePtr  Prev 
  41.     Rectangle bounds 
  42. END STRUCT 
  43.  
  44. STRUCT Region
  45.  
  46.     Rectangle bounds 
  47.     RegionRectanglePtr  RegionRectangle 
  48. END STRUCT 
  49.  
  50. #endif  /* GRAPHICS_REGIONS_H */
  51.